home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP Eylül 1998.iso / Slackwar / docs / linux-2.0.34 / filesystems / hpfs.txt < prev    next >
Encoding:
Text File  |  1995-12-16  |  975 b   |  28 lines

  1. Linux can read, but not write, OS/2 HPFS partitions.
  2.  
  3. Mount options are the same as for msdos partitions.
  4.  
  5.   uid=nnn    All files in the partition will be owned by user id nnn.
  6.   gid=nnn    All files in the partition will be in group nnn.
  7.   umask=nnn    The permission mask (see umask(1)) for the partition.
  8.   conv=binary   Data is returned exactly as is, with CRLF's.  [default]
  9.   conv=text     (Carriage return, line feed) is replaced with newline.
  10.   conv=auto     Chooses, file by file, conv=binary or conv=text (by guessing)
  11.  
  12. There are mount options unique to HPFS.
  13.  
  14.   case=lower    Convert file names to lower case.  [default]
  15.   case=asis     Return file names as is, in mixed case.
  16.  
  17.   nocheck    Proceed even if "Improperly stopped flag is set"
  18.  
  19. Case is not significant in filename matching, like real HPFS.
  20.  
  21.  
  22. Command line example
  23.     mkdir -p /os2/c
  24.     mount -t hpfs -o uid=100,gid=100 /dev/sda6 /os2/c
  25.  
  26. /etc/fstab example
  27.     /dev/sdb5    /d/f    hpfs    ro,uid=402,gid=402,umask=002
  28.